home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / ace124.arc / PRECDNCE.HLP < prev    next >
Text File  |  1985-03-26  |  1KB  |  19 lines

  1. «Å                Precedence of Operators:
  2.  
  3. «     Operator                               Associativity
  4. «     ────────────────────────────────────┬───────────────
  5. «     () [] -> .                          «│  «left to right     
  6.      ! ~ ++ -- - (type) * & sizeof       «│  «right to left
  7.      *  /  %                             «│  «left to right
  8.      +  -                                «│  «left to right 
  9.      << >>                               «│  «left to right
  10.      <  <=  >  >=                        «│  «left to right 
  11.      ==  !=                              «│  «left to right     
  12.      &                                   «│  «left to right 
  13.      ^                                   «│  «left to right 
  14.      │                                   «│  «left to right 
  15.      &&                                  «│  «left to right 
  16.      ││                                  «│  «left to right 
  17.      ?:                                  «│  «right to left
  18.      =  +=  -=  etc.                     «│  «right to left
  19.      ,  (K%R, Chapter 3)                 «│  «left to right